home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / dde / _pc / h / resspr < prev    next >
Text File  |  1992-02-09  |  979b  |  40 lines

  1. (*
  2.  * Title:   resspr.h
  3.  * Purpose: Access to sprite resources
  4.  *
  5.  *)
  6.  
  7. # ifndef __resspr_h
  8. # define __resspr_h
  9.  
  10. # ifndef __sprite_h
  11. # include "sprite.h"
  12. # endif
  13.  
  14. (* ----------------------------- resspr_init -------------------------------
  15.  * Description:   Initialises, ready for calls to resspr functions.
  16.  *
  17.  * Parameters:    void
  18.  * Returns:       void.
  19.  * Other Info:    call before using any resspr functions and before using
  20.  *                template_init() !! This function reads in your sprites.
  21.  *
  22.  *)
  23. procedure resspr_init; extern;
  24.  
  25.  
  26. (* ------------------------------ resspr_area ------------------------------
  27.  * Description:   Return pointer to sprite area being used.
  28.  *
  29.  * Parameters:    void
  30.  * Returns:       pointer to sprite area being used.
  31.  * Other Info:    useful for passing params to functions like baricon which
  32.  *                expect to be told sprite area to use.
  33.  *
  34.  *)
  35. function resspr_area : sprite_area_ptr; extern;
  36.  
  37. #endif
  38.  
  39. (* end of resspr.h *)
  40.